// source --> https://bestkitchenworks.com/wp-content/plugins/wp-video-profits/js/mediaelement/wp-mediaelement.js?ver=1.26 // logo (function($) { MediaElementPlayer.prototype.buildlogovk = function(player, controls, layers, media) { if (vidprofits_video.logo_url && vidprofits_video.logo_url != '') { link = vidprofits_video.logo_link ? vidprofits_video.logo_link : '#'; target = vidprofits_video.logo_link ? '_blank' : '_self'; var loop = $('
' + '' + '
') .appendTo(layers) } }; })(jQuery); /* With this, into each video on screen, we copy all the actions, so they are independent from each other */ var vp_os_vids = new Array(); vp_os_vids[0] = false; function vidprofits_add_video_to_queue( player, media ) { // console.log(player.id) // console.log(player) // console.log(jQuery(player)) mejs_id = 0; video_id = 0; campaign_id = 0; container_el = jQuery(player.container).closest('.wp-video') mejs_id = container_el.attr('data-me-id') video_id = container_el.attr('data-vidprofits-id'); if( !video_id ) campaign_id = container_el.attr('data-vcampaign-id'); // console.log(campaign_id) if( VIDPROFITS_DEBUG ) console.log('Adding video '+mejs_id+' to queue'); type = video_id ? 1 : 2; if( video_id || campaign_id ) { vp_os_vids[mejs_id] = new Array(); vp_os_vids[mejs_id]['player'] = player; vp_os_vids[mejs_id]['type'] = type; var actions = jQuery.extend(true, {}, vidprofits_get_video_actions( video_id, campaign_id, type )); vp_os_vids[mejs_id]['settings'] = actions; } return mejs_id; // console.log(vp_os_vids) } (function($) { // add mime-type aliases to MediaElement plugin support mejs.plugins.silverlight[0].types.push('video/x-ms-wmv'); mejs.plugins.silverlight[0].types.push('audio/x-ms-wma'); $(function() { vpfeatures = ['vidprofits', 'playpause', 'progress', 'duration', 'volume', 'fullscreen'] var settings = { features: vpfeatures, keyActions: [], success: function(media, node, player) { // TO-DO Asignar actions al player (si vienes de video id o de campaign id) // console.log('node'); // console.log(node); // console.log('media'); // console.log(media); // console.log('player'); // console.log(player); mejs_id = vidprofits_add_video_to_queue( player, media ); vidprofits_player_loaded( player, media ); // video_id = vidprofits_get_video_id(player); if (typeof vp_os_vids[mejs_id]['settings'] !== 'undefined') { // console.log('rmi353, pa que ?') vp_os_vids[mejs_id]['settings'].original_video = media.src; vp_os_vids[mejs_id]['settings'].player = player; } media.addEventListener('timeupdate', function(e) { vidprofits_time_update(player, media); }); media.addEventListener('ended', function(e) { vidprofits_player_ended(player, media); }); media.addEventListener('playing', function(e) { vidprofits_player_playing(player, media); }); /* media.addEventListener('canplay', function(e) { console.log('canplay') }); media.addEventListener('loadeddata', function(e) { console.log('loadeddata') });*/ media.addEventListener('loadedmetadata', function(e) { // console.log('loadedmetadata') // Update views for videoprofits theme var fn = window['vidprofitst_update_views']; if(typeof fn === 'function') vidprofitst_update_views( ); }); /*media.addEventListener('play', function(e) { console.log('play') }); media.addEventListener('loadedmetadata', function(e) { });*/ } }; if (vidprofits_video.is_pro == "1" && (vidprofits_video.logo_url != null) && (vidprofits_video.logo_url != '')) { logo_url = vidprofits_video.logo_url; settings.logo = { image: vidprofits_video.logo_url, link: '' } settings.features.unshift('logovk') } if (typeof _wpmejsSettings !== 'undefined') settings.pluginPath = _wpmejsSettings.pluginPath; var settings_horizontal = jQuery.extend(true, {}, settings); settings_horizontal.videoVolume = 'horizontal'; $('.wp-audio-shortcode:not(".vidprofits-volume-horizontal"), .wp-video-shortcode:not(".vidprofits-volume-horizontal")').mediaelementplayer(settings); $('.wp-audio-shortcode.vidprofits-volume-horizontal, .wp-video-shortcode.vidprofits-volume-horizontal').mediaelementplayer(settings_horizontal); }); }(jQuery)); (function($){ MediaElementPlayer.prototype.buildvidprofits = function(player, controls, layers, media){ post_id = media.attributes.id; html_string = ''; var loop = $('
' + '
' + html_string + '
' + '
') .appendTo(layers) }; })(jQuery); function vidprofits_player_ended( player, media ) { // player_id = vidprofits_get_video_id( player ); // vsettings = vidprofits_get_video_settings_from_id( player_id ); is_campaign = vidprofits_is_campaign( player ) mejs_id = vidprofits_get_mejs_id( player ); if( VIDPROFITS_DEBUG ) console.log('video ended'); // if( typeof vidprofits_vsettings[player_id] === 'undefined' ) if( typeof vp_os_vids[mejs_id]['settings'] === 'undefined' ) return; end_actions = vidprofits_get_actions( mejs_id, VIDEO_ACTION_MOMENT_VIDEOEND, 0, is_campaign ); if ( !vp_os_vids[mejs_id]['settings'].playing_original ) { // no estaba reproduciendo el original, reproducirlo vp_os_vids[mejs_id]['settings'].playing_original = true; if( VIDPROFITS_DEBUG ) console.log('Finished secondary, back again to primary: '+vp_os_vids[mejs_id]['settings'].original_video) player.setSrc( vp_os_vids[mejs_id]['settings'].original_video ); extra_layer = vidprofits_get_extra_layer( player ); extra_layer.find('.mep_content .vidprofits-skip-video').hide(); player.load(); player.play(); return; } vp_os_vids[mejs_id]['settings'].playing_original = true; if( vp_os_vids[mejs_id]['settings'].playing_status == 1 ) { vp_os_vids[mejs_id]['settings'].playing_status = 2; vidprofits_add_video_finish_count( player_id ); } if ( !end_actions || end_actions.length == 0 ) { if( VIDPROFITS_DEBUG ) console.log('video ended, NO hay actions :-('); if( vp_os_vids[mejs_id]['settings'].do_loop == 1 || vp_os_vids[mejs_id]['settings'].do_loop == '1' || media.attributes.loop ) { player.load(); player.play(); } return; } else { if( VIDPROFITS_DEBUG ) console.log('video ended, hay actions'); vidprofits_do_actions( mejs_id, player, end_actions ); } } function vidprofits_player_started( player, media ) { // player_id = vidprofits_get_video_id( player ); // vsettings = vidprofits_get_video_settings_from_id( player_id ); is_campaign = vidprofits_is_campaign( player ) mejs_id = vidprofits_get_mejs_id( player ); // if( typeof vidprofits_vsettings[player_id] === 'undefined' ) if( typeof vp_os_vids[mejs_id]['settings'] === 'undefined' ) return; start_actions = vidprofits_get_actions( mejs_id, VIDEO_ACTION_MOMENT_VIDEOSTART, 0, is_campaign ); // if ( !vidprofits_vsettings[player_id].playing_original ) if ( !vp_os_vids[mejs_id]['settings'].playing_original ) return; if ( !start_actions || start_actions.length == 0 ) { if( VIDPROFITS_DEBUG ) console.log('video started, NO hay actions :-('); return; } else { if( VIDPROFITS_DEBUG ) console.log('video started, hay actions'); // vidprofits_do_actions( player, start_actions ); vidprofits_do_actions( mejs_id, player, start_actions ); } } function vidprofits_player_loaded( player, media ) { is_campaign = vidprofits_is_campaign( player ) mejs_id = vidprofits_get_mejs_id( player ); // vsettings = vidprofits_get_video_settings_from_id( mejs_id ); if( VIDPROFITS_DEBUG ) console.log('video loaded: '+mejs_id); start_actions = vidprofits_get_actions( mejs_id, VIDEO_ACTION_MOMENT_VIDEOLOAD, 0, is_campaign); // console.log(start_actions) /*if (is_campaign && ( typeof vidprofits_csettings !== 'undefined') && ( typeof vidprofits_csettings[player_id] === 'undefined' ) ) return; else if ( !is_campaign && (typeof vidprofits_vsettings[player_id] === 'undefined' || !vidprofits_vsettings[player_id].playing_original ) ) { return; }*/ if ( !start_actions || start_actions.length == 0 ) { if( VIDPROFITS_DEBUG ) console.log('video '+mejs_id+' loaded, NO hay actions :-('); return; } else { if( VIDPROFITS_DEBUG ) console.log('video '+mejs_id+' loaded, hay actions'); vidprofits_do_actions( mejs_id, player, start_actions ); } } function vidprofits_time_update( player, media ) { var time = Math.floor(media.currentTime); is_campaign = vidprofits_is_campaign( player ) mejs_id = vidprofits_get_mejs_id( player ); // console.log('time pudate') // player_id = vidprofits_get_video_id( player ); if (time == 0 && !media.paused) { vidprofits_player_started( player, media ); } else if( media.paused ) return; secondx_actions = vidprofits_get_actions( mejs_id, VIDEO_ACTION_MOMENT_AFTERSECS, time); if ( !secondx_actions || secondx_actions.length == 0 ) { return; } /*else if (vidprofits_vsettings[player_id].playing_original) { vidprofits_do_actions( mejs_id, player, secondx_actions ); }*/ else if ( vp_os_vids[mejs_id]['settings'].playing_original ) { vidprofits_do_actions( mejs_id, player, secondx_actions ); } } function vidprofits_player_playing( player, media ) { player_id = vidprofits_get_video_id( player ); // vsettings = vidprofits_get_video_settings_from_id( player_id ); mejs_id = vidprofits_get_mejs_id( player ); if( VIDPROFITS_DEBUG ) console.log('playing') // if( typeof vidprofits_vsettings[player_id] === 'undefined' ) if( typeof vp_os_vids[mejs_id] === 'undefined' ) return; /*if( !vidprofits_vsettings[player_id].playing_status ) { vidprofits_vsettings[player_id].playing_status = 1; vidprofits_add_video_play_count( player_id ); } if (vidprofits_vsettings[player_id].do_seek && vidprofits_vsettings[player_id].playing_original) { vidprofits_vsettings[player_id].do_seek = false; player.setCurrentTime(vidprofits_vsettings[player_id].current_time); player.setCurrentRail(); }*/ if( !vp_os_vids[mejs_id]['settings'].playing_status ) { vp_os_vids[mejs_id]['settings'].playing_status = 1; vidprofits_add_video_play_count( player_id ); } if (vp_os_vids[mejs_id]['settings'].do_seek && vp_os_vids[mejs_id]['settings'].playing_original) { vp_os_vids[mejs_id]['settings'].do_seek = false; player.setCurrentTime(vp_os_vids[mejs_id]['settings'].current_time); player.setCurrentRail(); } }; // source --> https://bestkitchenworks.com/wp-content/plugins/wp-video-profits/js/slick.min.js?ver=a2bb602fb9d4344dc7486080729daac0 /* _ _ _ _ ___| (_) ___| | __ (_)___ / __| | |/ __| |/ / | / __| \__ \ | | (__| < _ | \__ \ |___/_|_|\___|_|\_(_)/ |___/ |__/ Version: 1.6.0 Author: Ken Wheeler Website: http://kenwheeler.github.io Docs: http://kenwheeler.github.io/slick Repo: http://github.com/kenwheeler/slick Issues: http://github.com/kenwheeler/slick/issues */ !function(a){"use strict";"function"==typeof define&&define.amd?define(["jquery"],a):"undefined"!=typeof exports?module.exports=a(require("jquery")):a(jQuery)}(function(a){"use strict";var b=window.Slick||{};b=function(){function c(c,d){var f,e=this;e.defaults={accessibility:!0,adaptiveHeight:!1,appendArrows:a(c),appendDots:a(c),arrows:!0,asNavFor:null,prevArrow:'',nextArrow:'',autoplay:!1,autoplaySpeed:3e3,centerMode:!1,centerPadding:"50px",cssEase:"ease",customPaging:function(b,c){return a('